03d63dde92cbf2396d9db5746c5c6ebd73c03b8f,org.eclipse.january.geometry/src/org/eclipse/january/geometry/impl/VertexSourceImpl.java,VertexSourceImpl,eNotify,#Notification#,262

Before Change



			// If this notification is on the UI thread, launch a new thread to
			// handle it
			if (Thread.currentThread() == Display.getCurrent().getThread()) {

				Thread updateThread = new Thread() {

After Change



			// If this notification is on the UI thread, launch a new thread to
			// handle it
			Display currDisplay = Display.getCurrent();
			if (currDisplay != null
					&& Thread.currentThread() == currDisplay.getThread()) {

				Thread updateThread = new Thread() {